home *** CD-ROM | disk | FTP | other *** search
/ Mac Easy 2010 May / Mac Life Ubuntu.iso / casper / filesystem.squashfs / var / lib / dpkg / info / system-tools-backends.postrm < prev    next >
Encoding:
Text File  |  2009-04-09  |  381 b   |  18 lines

  1. #!/bin/sh
  2.  
  3. set -e
  4.  
  5. # Do not restart dbus on upgrades, only if we remove the package.
  6. if [ "$1" = "remove" ] ; then 
  7.     if [ -x /etc/init.d/dbus ]; then
  8.         invoke-rc.d dbus force-reload || true
  9.     fi
  10. fi
  11.  
  12. # Automatically added by dh_installinit
  13. if [ "$1" = "purge" ] ; then
  14.     update-rc.d system-tools-backends remove >/dev/null || exit $?
  15. fi
  16. # End automatically added section
  17.  
  18.